xfetch-js
A extremely simple fetch extension for modern browsers inspired by sindresorhus/ky.
Which aims to be as small as possible and easy to use.
Examaple
xf('https://postman-echo.com/get/', { qs: { foo: 'bar' } })
.json()
.then(console.log)
xf.post('https://postman-echo.com/post', { form: { foo: 'bar' } })
.json()
.then(console.log)
xf.post('https://postman-echo.com/post', { json: { foo: 'bar' } })
.json(r => r.data)
.then(console.log)
const xf2 = xf.extend({
baseURI: 'https://postman-echo.com/'
})
xf2.get('/get').then(console.log)
xf.get('https://postman-echo.com/404').catch(e => {
assert(e instanceof xf.HTTPError)
console.log(e.response)
})
With node
const xf = require('xfetch-js')
xf('https://postman-echo.com/get/', { qs: { foo: 'bar' } })
.json()
.then(console.log)
Main differences bewteen fetch and xfetch-js
credentials
is set to same-origin
by default.- Throws error when
response.ok
is not true - Some useful methods to call, such as
get
,post
and so on... - Support some simple serialization, including
json
,urlencoded
and querystring
- Support post transformation like
.json(r => r.body)
- Create another instance with default options
xf.extend({})
fetch(Request)
are not supported
API
See xfetch.base.d.ts.
License